home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mntlib44.zoo / mntlib / execv.c < prev    next >
C/C++ Source or Header  |  1994-03-01  |  242b  |  17 lines

  1. /*
  2.     execv for MiNT/TOS; written by Eric R. Smith, and
  3.     placed in the public domain
  4. */
  5.  
  6. #include <process.h>
  7. #include <unistd.h>
  8.  
  9. int
  10. execv(path, argv)
  11.     const char *path;
  12.     char *const *argv;
  13. {
  14.     return _spawnve(P_OVERLAY, path, argv, NULL);
  15. }
  16.  
  17.